IEnumerable.GetEnumerator Method

Task Parallel System.Threading

Returns an enumerator that iterates through a collection.

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Private Function GetEnumerator As IEnumerator
	Implements IEnumerable.GetEnumerator
C#
IEnumerator IEnumerable.GetEnumerator()

Return Value

An IEnumerator that can be used to iterate through the collection.

Implements

IEnumerable..::.GetEnumerator()()()

Remarks

The enumeration represents a moment-in-time snapshot of the contents of the stack. It does not reflect any updates to the collection after GetEnumerator()()() was called. The enumerator is safe to use concurrently with reads from and writes to the stack.

See Also